home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / intuition / propgadgets.h < prev    next >
C/C++ Source or Header  |  1996-10-10  |  783b  |  28 lines

  1. #ifndef _PROPGADGETS_H_
  2. #define _PROPGADGETS_H_
  3. /*
  4.     (C) 1995-96 AROS - The Amiga Replacement OS
  5.     $Id: propgadgets.h,v 1.1 1996/10/10 13:09:42 digulla Exp $
  6.  
  7.     Desc: Header for PROP Gadgets
  8.     Lang: english
  9. */
  10. #ifndef INTUITION_INTUITION_H
  11. #   include <intuition/intuition.h>
  12. #endif
  13. #ifndef INTUITION_INTUITIONBASE_H
  14. #   include <intuition/intuitionbase.h>
  15. #endif
  16. #ifndef _GADGETS_H_
  17. #   include "gadgets.h"
  18. #endif
  19.  
  20. int CalcKnobSize (struct Gadget * propGadget, struct BBox * knobbox);
  21. void RefreshPropGadget (struct Gadget * gadget, struct Window * window,
  22.     struct IntuitionBase * IntuitionBase);
  23. void RefreshPropGadgetKnob (UWORD flags, struct BBox * clear,
  24.     struct BBox * knob, struct Window * window,
  25.     struct IntuitionBase * IntuitionBase);
  26.  
  27. #endif /* _PROPGADGETS_H_ */
  28.